home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / netz / term / extras / source / gtlayout-source.lha / gtlayout_data.c next >
C/C++ Source or Header  |  1995-04-03  |  696b  |  32 lines

  1. /*  GadTools layout toolkit
  2. **
  3. **  Copyright © 1993-1995 by Olaf `Olsen' Barthel
  4. **  Freely distributable.
  5. */
  6.  
  7. #include "gtlayout_global.h"
  8.  
  9. ULONG             ghostingPat = 0x44441111;
  10.  
  11. struct ExecBase        *SysBase;
  12. struct Library        *IntuitionBase;
  13. struct GfxBase        *GfxBase;
  14. struct Library        *UtilityBase;
  15. struct Library        *GadToolsBase;
  16. struct Library        *KeymapBase;
  17. struct LocaleBase    *LocaleBase;
  18. struct Locale        *LTP_Locale;
  19. struct SignalSemaphore     LTP_LockSemaphore;
  20. struct MinList         LTP_LockList;
  21. struct IClass        *LTP_ImageClass,
  22.             *LTP_LevelClass;
  23.  
  24. #ifdef DO_PICKSHORTCUTS
  25. UBYTE             LTP_Keys[2][256];
  26. struct SignalSemaphore     LTP_KeySemaphore;
  27. BOOLEAN             LTP_KeysInitialized;
  28. #endif
  29.  
  30. BOOLEAN             V39,
  31.              V40;
  32.